home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 August: Tool Chest / Dev.CD Aug 94.toast / Sample Code / Snippets / Toolbox / Modeless Dialog Sample / PPCModelessSample.make < prev    next >
Encoding:
Text File  |  1994-02-23  |  1.2 KB  |  40 lines  |  [TEXT/MPS ]

  1. #   File:       PPCModelessSample.make
  2. #   Target:     PPCModelessSample
  3. #   Sources:    Application.c
  4. #               DialogCode.c
  5. #               Sample.r
  6. #   Created:    Monday, February 14, 1994 12:11:21 PM
  7.  
  8. objFolder = ":object:"
  9.  
  10. OBJECTS = ∂
  11.         {objFolder}Application.o ∂
  12.         {objFolder}DialogCode.o 
  13.  
  14.  
  15. PPCModelessSample  ƒƒ PPCModelessSample.make Sample.r
  16.     Rez -d PowerPCNativeBuild=true Sample.r -append -o PPCModelessSample
  17.  
  18. PPCModelessSample ƒƒ PPCModelessSample.make  {OBJECTS}
  19.     PPCLink  -sym on ∂
  20.         {OBJECTS} ∂
  21.         "{PPCLibraries}"InterfaceLib.xcoff ∂
  22.         "{PPCLibraries}"MathLib.xcoff ∂
  23.         "{PPCLibraries}"StdCLib.xcoff ∂
  24.         "{PPCLibraries}"StdCRuntime.o ∂
  25.         "{PPCLibraries}"PPCCRuntime.o ∂
  26.         -main __start ∂
  27.         -o PPCModelessSample.xcoff
  28.     makePEF PPCModelessSample.xcoff -o PPCModelessSample ∂
  29.         -l InterfaceLib.xcoff=InterfaceLib ∂
  30.         -l MathLib.xcoff=MathLib ∂
  31.         -l StdCLib.xcoff=StdCLib ∂
  32.         -ft APPL -fc '????'
  33.     MakeSYM PPCModelessSample.xcoff -o PPCModelessSample.xSYM
  34.  
  35. {objFolder}Application.o ƒ PPCModelessSample.make Application.c
  36.      PPCC -w conformance -appleext on -sym on Application.c -o {objFolder}Application.o
  37.  
  38. {objFolder}DialogCode.o ƒ PPCModelessSample.make DialogCode.c
  39.      PPCC -w conformance -appleext on -sym on DialogCode.c -o {objFolder}DialogCode.o
  40.